/* CSS Document */

/* ---------- Product ---------- */
.product {
  padding: 100px 0 60px;
}

.product-tit {
  position: relative;
}
.product-tit h2 {
  font-family: "Arial";
  font-size: 14px;
  font-weight: normal;
  color: #39434c;
  text-transform: uppercase;
}
.product-tit h3 {
  position: relative;
  padding: 4px 0 20px;
  font-size: 28px;
  color: #20242b;
}
.product-tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 3px;
  background: #ed6c00;
  content: "";
}
.product-tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 48px 8px 20px;
  border: 1px solid #efefef;
  border-radius: 4px;
  background: url("../img/more-arrow.png") no-repeat right 20px center;
  font-size: 14px;
  color: #999;
}
.product-tit a:hover.more-btn {
  border: 1px solid #e0e0e0;
  color: #666;
}

.product-con {
  padding-top: 48px;
  overflow: hidden;
}
.product-con ul {
  width: calc(100% + 40px);
}
.product-con li {
  float: left;
  margin: 0 40px 40px 0;
  width: calc(100% / 2 - 40px);
  height: 300px;
	display: flex;
  background: #f6f6f6;
  transition: all 0.3s ease-in-out;
}
.product-con li:nth-child(n+2):nth-child(-n+3) {
  background: #f0f0f0;
}
.product-con li .con {
  flex: 1;
  padding: 60px 20px 0 60px;
}
.product-con li h4 {
  font-size: 20px;
}
.product-con li p {
  padding-top: 20px;
  height: 70px;
  font-size: 14px;
  color: #999;
  line-height: 180%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.product-con li .btm {
  padding-top: 20px;
}
.product-con li a.more-btn {
  display: inline-block;
  padding: 8px 48px 8px 20px;
  border-radius: 4px;
  background: url("../img/product-more-arrow.png") no-repeat right 20px center #ed6c00;
  font-size: 14px;
  color: #fff;
}
.product-con a:hover.more-btn {
  box-shadow: 0 4px 12px rgba(237,108,0,0.3);
}
.product-con li .pic {
  padding: 30px 10px;
  width: 240px;
  overflow: hidden;
}
.product-con li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.product-con li:hover {
  transform: translate(0,-10px);
}
.product-con li:hover .pic img {
  transform: scale(1.05);
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .product {
    padding: 60px 0 40px;
  }

  .product-tit h2 {
    font-size: 12px;
  }
  .product-tit h3 {
    padding: 4px 0 16px;
    font-size: 20px;
  }
  .product-tit h3:after {
    width: 80px;
    height: 2px;
  }
  .product-tit a.more-btn {
    padding: 6px 36px 6px 12px;
    background: url("../img/more-arrow.png") no-repeat right 12px center;
  }

  .product-con {
    padding-top: 32px;
  }
  .product-con ul {
    width: auto;
  }
  .product-con li {
    margin: 0 0 20px 0;
    width: 100%;
    height: 200px;
  }
  .product-con li:nth-child(n+2):nth-child(-n+3) {
    background: #fafafa;
  }
  .product-con li .con {
    padding: 28px 8px 0 28px;
  }
  .product-con li h4 {
    font-size: 16px;
  }
  .product-con li p {
    padding-top: 12px;
    height: 68px;
    line-height: 140%;
  }
  .product-con li .btm {
    padding-top: 12px;
  }
  .product-con li a.more-btn {
    padding: 6px 36px 6px 12px;
    background: url("../img/product-more-arrow.png") no-repeat right 12px center #ed6c00;
  }
  .product-con li .pic {
    padding: 20px 0;
    width: 160px;
  }
}

/* ---------- Application ---------- */
.application {
  padding: 100px 0;
  background-position: center top;
  background-size: cover;
}

.application-tit {
  position: relative;
}
.application-tit h2 {
  font-family: "Arial";
  font-size: 14px;
  font-weight: normal;
  color: #20242b;
  text-transform: uppercase;
}
.application-tit h3 {
  position: relative;
  padding: 4px 0 20px;
  font-size: 28px;
  color: #20242b;
}
.application-tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 3px;
  background: #ed6c00;
  content: "";
}
.application-tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 48px 8px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: url("../img/more-arrow.png") no-repeat right 20px center;
  font-size: 14px;
  color: #aaa;
}
.application-tit a:hover.more-btn {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.application-con {
  padding-top: 48px;
  overflow: hidden;
}
.application-con ul {
  width: calc(100% + 40px);
}
.application-con li {
  float: left; background:#fff;
  margin: 0 40px 0 0;
  padding: 60px 40px 0;
  width: calc(100% / 4 - 40px);
  height: 360px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}
.application-con li .ico img {
  width: 50px;
}
.application-con li h4 {
  padding-top: 36px;
  font-size: 20px;
  font-weight: normal;
  color: #414141;
}
.application-con li p {
  padding-top: 16px;
  height: 80px;
  font-size: 14px;
  color: rgba(89,89,89,0.6);
  line-height: 180%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.application-con li .btm {
  padding-top: 16px;
}
.application-con li a.more-btn {
  padding: 0 32px 10px 0;
  border-bottom: 1px solid rgba(98,98,98,0.5);
  background: url("../img/product-more-arrow2.png") no-repeat right 6px;

}
.application-con li:hover {
  background: #fafafa;
  transform: translate(0,-10px);
}
.application-con li a:hover.more-btn {
  opacity: 0.8;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .application {
    padding: 60px 0 44px;
  }

  .application-tit h2 {
    font-size: 12px;
  }
  .application-tit h3 {
    padding: 4px 0 16px;
    font-size: 20px;
  }
  .application-tit h3:after {
    width: 80px;
    height: 2px;
  }
  .application-tit a.more-btn {
    padding: 6px 36px 6px 12px;
    background: url("../img/more-arrow.png") no-repeat right 12px center;
  }

  .application-con {
    padding-top: 32px;
  }
  .application-con ul {
    width: calc(100% + 16px);
  }
  .application-con li {
    margin: 0 16px 16px 0;
    padding: 32px 24px 0;
    width: calc(100% / 2 - 16px);
    height: 308px;
  }
  .application-con li h4 {
    padding-top: 20px;
    font-size: 16px;
  }
  .application-con li p {
    padding-top: 12px;
    height: 88px;
    line-height: 140%;
    -webkit-line-clamp: 4;
  }
  .application-con li .btm {
    padding-top: 12px;
  }
  .application-con li a.more-btn {
    padding: 0 28px 8px 0;
  }
}

/* ---------- News ---------- */
.news {
  padding: 100px 0;
}

.news-tit {
  position: relative;
}
.news-tit h2 {
  font-family: "Arial";
  font-size: 14px;
  font-weight: normal;
  color: #39434c;
  text-transform: uppercase;
}
.news-tit h3 {
  position: relative;
  padding: 4px 0 20px;
  font-size: 28px;
  color: #20242b;
}
.news-tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 3px;
  background: #ed6c00;
  content: "";
}
.news-tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 48px 8px 20px;
  border: 1px solid #efefef;
  border-radius: 4px;
  background: url("../img/more-arrow.png") no-repeat right 20px center;
  font-size: 14px;
  color: #999;
}
.news-tit a:hover.more-btn {
  border: 1px solid #e0e0e0;
  color: #666;
}

.news-con {
  padding-top: 48px;
  overflow: hidden;
}
.news-con ul {
  width: calc(100% + 60px);
}
.news-con li {
  float: left;
  margin: 0 60px 0 0;
  width: calc(100% / 3 - 60px);
}
.news-con li a {
  display: block;
  height: 388px;
  border-bottom: 1px solid #e6e6e6;
}
.news-con li .pic {
  position: relative;
  height: 200px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.news-con li .pic img {
  width: 100%;
}
.news-con li .pic .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(237,108,0,0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.news-con li .pic .mask .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: url("../img/news-more-arrow.png") no-repeat center;
  transform: translate(-50%,-50%);
}
.news-con li h4 {
  padding-top: 32px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-con li p {
  padding-top: 16px;
  font-size: 14px;
  color: #999;
  line-height: 180%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-con li .date {
  padding-top: 20px;
  font-family: "PFDinTextPro-Light";
  font-size: 16px;
  color: #ccc;
}
.news-con li a:hover {
  border-bottom: 1px solid #ed6c00;
}
.news-con li a:hover .pic {
  height: auto;
}
.news-con li a:hover .pic .mask {
  opacity: 1;
}
.news-con li a:hover .date {
  display: none;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .news {
    padding: 60px 0 40px;
  }

  .news-tit h2 {
    font-size: 12px;
  }
  .news-tit h3 {
    padding: 4px 0 16px;
    font-size: 20px;
  }
  .news-tit h3:after {
    width: 80px;
    height: 2px;
  }
  .news-tit a.more-btn {
    padding: 6px 36px 6px 12px;
    background: url("../img/more-arrow.png") no-repeat right 12px center;
  }

  .news-con {
    padding-top: 32px;
  }
  .news-con ul {
    width: auto;
  }
  .news-con li {
    float: none;
    margin: 0 0 20px 0;
    width: auto;
  }
  .news-con li a {
    padding-bottom: 20px;
    height: auto;
  }
  .news-con li .pic {
    height: auto;
  }
  .news-con li h4 {
    padding-top: 20px;
  }
  .news-con li p {
    padding-top: 8px;
    line-height: 160%;
  }
  .news-con li .date {
    padding-top: 12px;
  }
  .news-con li a:hover {
    border-bottom: 1px solid #ed6c00;
  }
  .news-con li a:hover .pic {
    height: auto;
  }
  .news-con li a:hover .date {
    display: inherit;
  }
}

/* ---------- Quick link ---------- */
.quick-link {
  display: flex;
}

.quick-link .download {
  flex: 1;
  position: relative;
  height: 240px;
  background-position: center;
  background-size: cover;
}
.quick-link .contact {
  flex: 1;
  position: relative;
  height: 240px;
  background-position: center;
  background-size: cover;
}
.quick-link a.more-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 12px 68px 12px 32px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  background: url("../img/product-more-arrow.png") no-repeat right 32px center;
  font-size: 17px;
  color: #fff;
}
.quick-link a:hover.more-btn {
  border: 1px solid rgba(255,255,255,0.6);
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .quick-link {
    display: inline;
  }

  .quick-link .download {
    height: 200px;
  }
  .quick-link .contact {
    height: 200px;
  }
  .quick-link a.more-btn {
    font-size: 15px;
  }
}